home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk8 / contents < prev    next >
Text File  |  1995-03-18  |  3KB  |  51 lines

  1. Contents ScopeDisk8
  2.  
  3. A68k121 - If you are an experienced 68000/68010 Assembly language
  4.     programmer, you will find much of this material useful in
  5.     understanding assembly language programming on the AMIGA. If you are
  6.     an experienced AMIGA assembly language programmer, you may find much
  7.     of the material boring, and will only want to use this as a reference
  8.     document. If you don't know assembly language, then this document will
  9.     not teach it, so you may need to get one of a number available
  10.     reference books on MC68000 assembly language programming.
  11.  
  12. ASG - ASG is a simple compiler that allows you to define windows, menus,
  13.     gadgets, and requesters in a simple manner.  It allows you to supply
  14.     only the information you feel is relevent and it will supply the rest.
  15.  
  16. ASM - various assembly routines.
  17.  
  18. DeBug - a debugger geared towards the heavy duty hacker.
  19.  
  20. Hunker - This program was written by Terry Fisher.  Its purpose: to fix
  21.     some of those nasty programs that were written before people started
  22.     using fast memory. Now, it can also be used as a valuable 'C'
  23.     development tool, similar in function to the Assembly language Atom
  24.     utility.  By running this program on your executable, you can avoid
  25.     having to copy image data into chip memory.  Simply put 'Hunker
  26.     <file> d=c' into your Makefile, and all initialized data will be
  27.      loaded into chip memory automatically.
  28.  
  29. IA - An early but effective iconmaker Use in conjunction with a paint prog.
  30.  
  31. MenuBuild -   There is a difficulty in building menus, this program will
  32.     automate the process.  This program will take a simple text file  and
  33.     generate a C source file with all the needed structures for producing
  34.     an AMIGA Menu.
  35.  
  36. PtrData - The Intuition function SetPointer() allows you to attach a
  37.     custom pointer to a window by specifing the Window, Sprite, height,
  38.     width, xoffset and yoffset. The Preferences program allows you to
  39.     design your custom pointers but it saves them as a preferences
  40.     structure in the devs: directory as a file system-configuration.
  41.     This program will read the system-configuration file and then generate
  42.     the C data needed to use the SetPointer function.
  43.  
  44. Qint - A Matt Dillon special on Interrupts etc.
  45.  
  46. SmallLib - This is for all you who program the Amiga in 68000 assembly
  47.     (Both of you... :-).  It works just like Amiga.lib except it's only
  48.     11K instead of over 88K.  What's missing??  All those mangy C language
  49.     stubs you don't need anyway.
  50.  
  51. SuperLib - a general C support library often used by Matt Dillon.